From db9563e7e470f61d588ec57e04aaec64b67261a6 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 7 Dec 2007 12:44:27 +0000 Subject: [PATCH] xm: Fix help messages of xm vcpu-list/uptime We can give multiple domains to the following commands. But, the help messages of the commands are explained to be able to give a single domain. Signed-off-by: Masaki Kanno --- tools/python/xen/xm/main.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/python/xen/xm/main.py b/tools/python/xen/xm/main.py index b8172eb06b..59105a8f86 100644 --- a/tools/python/xen/xm/main.py +++ b/tools/python/xen/xm/main.py @@ -114,7 +114,8 @@ SUBCOMMAND_HELP = { 'shutdown' : (' [-waRH]', 'Shutdown a domain.'), 'top' : ('', 'Monitor a host and the domains in real time.'), 'unpause' : ('', 'Unpause a paused domain.'), - 'uptime' : ('[-s] ', 'Print uptime for a domain.'), + 'uptime' : ('[-s] [Domain, ...]', + 'Print uptime for all/some domains.'), # Life cycle xm commands 'new' : (' [options] [vars]', @@ -143,8 +144,8 @@ SUBCOMMAND_HELP = { 'debug-keys' : ('', 'Send debug keys to Xen.'), 'trigger' : (' []', 'Send a trigger to a domain.'), - 'vcpu-list' : ('[]', - 'List the VCPUs for a domain or all domains.'), + 'vcpu-list' : ('[Domain, ...]', + 'List the VCPUs for all/some domains.'), 'vcpu-pin' : (' ', 'Set which CPUs a VCPU can use.'), 'vcpu-set' : (' ', -- 2.30.2